﻿@charset "UTF-8";
body {
  background: url(../images/page-bg.jpg) no-repeat;
}

.fc-orange {
  color: #FAB170;
}

.fc-white70 {
  color: rgba(0, 0, 0, 0.7) !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #FAB170;
  width: 150px;
  height: 46px;
  background-color: #FAB170;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.button:hover {
  background-color: #fd8c29;
}
.button + .button {
  margin-left: 20px;
}

.button[disabled] {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

.plain-button {
  background-color: #fff;
  color: #000;
}
.plain-button:hover {
  color: #fff;
}

.text-button {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}
.text-button:hover {
  background-color: #fff;
  color: #FAB170;
}

.check-box {
  border: 2px solid #FAB170;
  border-radius: 8px;
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
}
.check-box.is-checked {
  background-color: #FAB170;
  color: #fff;
}

/* 页面布局 */
.layout {
  display: block;
  margin: 0 auto;
  width: 1200px;
}

/* 头部 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.4);
}
.header .layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .layout .logo {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
}

.header .layout .logo img {
  position: relative;
  z-index: 1;
  width: 180px;
}
.header.fixed-header {
  background-color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
}

.banner-wrap {
  background-color: #f9f9f9;
}

@keyframes sloganMove {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0;
    transform: translateX(-1000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.banner {
  position: relative;
  float: none;
  overflow-x: hidden;
  width: 1200px;
  height: 540px;
}
.banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.6s;
  opacity: 1;
}
.banner .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .image .slogan {
  position: absolute;
  top: 180px;
  left: 10px;
  text-align: left;
}
.banner .image .slogan .slogan-title {
  font-size: 32px;
  font-weight: bold;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transform: translateX(0);
  opacity: 1;
}
.banner .image .slogan .slogan-desc {
  padding-top: 60px;
  font-size: 24px;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
}
.banner .image .banner-green .slogan-title span.fc-orange, .banner .image .banner-green .slogan-desc span.fc-orange {
  color: #fff;
}
.banner .image .fade-slogan .slogan-title {
  opacity: 0;
  transform: translateX(-1200px);
}
.banner .image .fade-slogan .slogan-desc {
  opacity: 0;
  transform: translateX(400px);
}
.banner .image .banner-pagegination {
  position: absolute;
  left: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner .image .banner-pagegination span {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #fff;
  cursor: pointer;
}
.banner .image .banner-pagegination .active {
  border: 4px solid #FAB170;
}
.banner .image .banner-pagegination span + span {
  margin-left: 10px;
}

.application-scenario-wrap {
  padding: 60px 0;
  background-color: #fff;
}
.application-scenario-wrap .application-scenario-hd {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.application-scenario-wrap .application-scenario-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
.application-scenario-wrap .application-scenario-body .application-scenario-item {
  position: relative;
  border-radius: 0 20px 20px 20px;
  width: 280px;
  height: 180px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.application-scenario-wrap .application-scenario-body .application-scenario-item .slogan {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: #fff;
  border-radius: 0 0 60px 0;
  padding: 0 30px 0 20px;
  height: 50px;
  line-height: 43px;
  background-color: rgba(0, 0, 0, 0.7);
}

.product-box {
  margin-top: 10px;
  background-color: #ededed;
}
.product-box .title {
  text-align: center;
}
.product-box .title h1 {
  padding: 30px 0 4px;
}

.slide-tab .hd li {
  background-color: #fff;
}
.slide-tab .hd li .bg-green {
  background-color: #05B305;
}
.slide-tab .hd li .bg-blue {
  background-color: #7948EA;
}
.slide-tab .hd li .bg-yellow {
  background-color: #DAF6E7;
  color: #272D4E;
}
.slide-tab .hd li .bg-dark-orange {
  background-color: #E77817;
}

.authorization-mode {
  padding-bottom: 60px;
}
.authorization-mode .authorization-mode-hd {
  padding: 60px 0 40px;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}
.authorization-mode .authorization-mode-hd span {
  font-size: 18px;
}
.authorization-mode .authorization-mode-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 250px;
}
.authorization-mode .authorization-mode-body .authorization-mode-item {
  position: absolute;
  left: 0;
  border-radius: 40px;
  padding-left: 2%;
  width: 31%;
  height: 100%;
  background-color: #FAB170;
  z-index: 3;
  color: #fff;
}
.authorization-mode .authorization-mode-body .authorization-mode-item .title {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 26px;
}
.authorization-mode .authorization-mode-body .authorization-mode-item .describe {
  color: #f5f5f5;
}
.authorization-mode .authorization-mode-body .resources .describe {
  padding: 0 40px 0 20px;
}
.authorization-mode .authorization-mode-body .independent {
  padding-left: 34%;
  padding-right: 2%;
  width: 66%;
  z-index: 2;
  background-color: #F6F6F6;
  color: #000;
}
/* .authorization-mode .authorization-mode-body .independent .title {
  color: #FAB170;
}*/
.authorization-mode .authorization-mode-body .independent .describe {
  color: #000;
}
.authorization-mode .authorization-mode-body .company {
  padding-left: 69%;
  padding-right: 2%;
  width: 100%;
  z-index: 1;
  background-color: #7948EA;
}

.reg-login-wrap {
  padding: 60px 0;
  background-color: #FAB170;
}

.register {
  float: none;
  display: flex;
  border-radius: 0 120px 0 120px;
  margin-bottom: 40px;
  padding: 40px 60px;
  background-color: #F6F6F6;
}
.register .introduce {
  padding-right: 40px;
  width: 64%;
}
.register .introduce .title h1 {
  text-align: left;
}
.register .introduce .select-type strong {
  padding-right: 10px;
}
.register .introduce .select-type .radio-box {
  display: inline-block;
  padding-left: 10px;
}
.register .introduce .text-ontrial {
  padding: 20px 0 0;
}
.register .introduce .text-ontrial .title {
  font-weight: bold;
}
.register .introduce .p-text-2 {
  padding: 0;
  line-height: 20px;
  text-indent: 0;
  font-size: 12px;
}

.form {
  width: 400px;
}
.form .title {
  padding: 25px 0 18px;
}
.form .title .main-title {
  font-size: 30px;
}
.form .title .sub-title {
  font-size: 18px;
}
.form .form-input-item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.form .form-input-item .label {
  display: inline-flex;
  align-items: center;
  width: 110px;
  font-size: 20px;
}
.form .form-input-item .label .iconfont {
  padding-right: 4px;
  font-size: 24px;
}
.form .form-input-item .input {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 16px 20px;
  width: 320px;
  height: 48px;
}
.form .form-input-item .button {
  margin-left: 20px;
}
.form .form-input-item .check-box {
  margin-right: 10px;
}

.login-wrap {
  float: none;
  display: flex;
  justify-content: space-between;
  border-radius: 150px 0 120px 0;
  background-color: #F6F6F6;
}
.login-wrap .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 150px 0 0 0;
  padding: 80px 60px;
  background-color: #88F2B9;
}
.login-wrap .logo .title {
  padding-bottom: 20px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.login-wrap .logo img {
  position: relative;
  width: 420px;
  z-index: 2;
}
.login-wrap .logo .code {
  
  padding: 20px;
  background-color: #fff;
  width: 280px;
  height: 280px;
}
.login-wrap .form {
  margin-right: 60px;
}